html,
body {
  height: 100%;
  padding: 0;
  margin: 0;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#name,
.name {
  font-size: 48px;
  font-weight: bold;
  color: #8b0000; /* Bloody red */
  z-index: 10;
  padding: 20px;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  text-align: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.5); /* Slight transparency */
  border-radius: 10px;
}

.container div {
  font-size: 24px; /* Bigger text */
  color: #ffc9c9; /* Pink color */
  margin-bottom: 15px;
}

#background-music {
  display: none;
}
